home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / caseotherwisedemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  185 b   |  12 lines

  1. program CaseOtherwiseDemo;
  2. var x : Integer;
  3. begin
  4.   ReadLn (x);
  5.   case x of
  6.     1 : WriteLn ('one');
  7.     2 : WriteLn ('two');
  8.     otherwise
  9.       WriteLn ('many')
  10.   end
  11. end.
  12.